83dbd6d6ec3f6be4193024e7be56368454170176,jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/resolver/AutoLinkResolver.java,AutoLinkResolver,resolveAutomaticLink,#MarkupContainer#String#ComponentTag#,804
Before Change
// By setting the component name, the tag becomes a Wicket component
// tag, which must have a associated Component.
tag.setId(autoId);
// get the reference resolver
ITagReferenceResolver referenceResolver = (ITagReferenceResolver)tagNameToTagReferenceResolvers
After Change
// By setting the component name, the tag becomes a Wicket component
// tag, which must have a associated Component.
if (tag.getId() == null)
{
tag.setId(autoId);
}
// get the reference resolver